home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / JFC.bin / MetalTheme.java < prev    next >
Text File  |  1998-06-30  |  5KB  |  103 lines

  1. /*
  2.  * @(#)MetalTheme.java    1.11 98/03/04
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  */
  20.  
  21. package com.sun.java.swing.plaf.metal;
  22.  
  23. import com.sun.java.swing.plaf.*;
  24. import com.sun.java.swing.*;
  25.  
  26. /**
  27.  * This interface acts as a generic way to describe the colors
  28.  * used by Metal.  Classes which implement this interface can
  29.  * be used to swap the colors in a Metal application.
  30.  *
  31.  * @version 1.11 03/04/98
  32.  * @author Steve Wilson
  33.  */
  34.  
  35. public abstract class MetalTheme {
  36.  
  37.     private static ColorUIResource white = new ColorUIResource( 255, 255, 255 );
  38.     private static ColorUIResource black = new ColorUIResource( 0, 0, 0 );
  39.  
  40.     public abstract String getName();
  41.  
  42.     protected abstract ColorUIResource getPrimary1();  // these are blue in Metal Default Theme
  43.     protected abstract ColorUIResource getPrimary2();
  44.     protected abstract ColorUIResource getPrimary3();
  45.  
  46.     protected abstract ColorUIResource getSecondary1();  // these are gray in Metal Default Theme
  47.     protected abstract ColorUIResource getSecondary2();
  48.     protected abstract ColorUIResource getSecondary3();
  49.  
  50.     public abstract FontUIResource getControlTextFont();
  51.     public abstract FontUIResource getSystemTextFont();
  52.     public abstract FontUIResource getUserTextFont();
  53.     public abstract FontUIResource getMenuTextFont();
  54.     public abstract FontUIResource getWindowTitleFont();
  55.     public abstract FontUIResource getSubTextFont();
  56.  
  57.     protected ColorUIResource getWhite() { return white; }
  58.     protected ColorUIResource getBlack() { return black; }
  59.  
  60.     public ColorUIResource getFocusColor() { return getPrimary2(); }
  61.  
  62.     public  ColorUIResource getDesktopColor() { return getPrimary2(); }
  63.  
  64.     public ColorUIResource getControl() { return getSecondary3(); }  
  65.     public ColorUIResource getControlShadow() { return getSecondary2(); }  
  66.     public ColorUIResource getControlDarkShadow() { return getSecondary1(); }  
  67.     public ColorUIResource getControlInfo() { return getBlack(); } 
  68.     public ColorUIResource getControlHighlight() { return getWhite(); }  
  69.     public ColorUIResource getControlDisabled() { return getSecondary2(); }  
  70.  
  71.     public ColorUIResource getPrimaryControl() { return getPrimary3(); }  
  72.     public ColorUIResource getPrimaryControlShadow() { return getPrimary2(); }  
  73.     public ColorUIResource getPrimaryControlDarkShadow() { return getPrimary1(); }  
  74.     public ColorUIResource getPrimaryControlInfo() { return getBlack(); } 
  75.     public ColorUIResource getPrimaryControlHighlight() { return getWhite(); }  
  76.  
  77.     public ColorUIResource getSystemTextColor() { return getPrimary1(); }
  78.     public ColorUIResource getControlTextColor() { return getControlInfo(); }  
  79.     public ColorUIResource getInactiveControlTextColor() { return getControlDisabled(); }  
  80.     public ColorUIResource getInactiveSystemTextColor() { return getSecondary2(); }
  81.     public ColorUIResource getUserTextColor() { return getBlack(); }
  82.     public ColorUIResource getTextHighlightColor() { return getPrimary3(); }
  83.     public ColorUIResource getHighlightedTextColor() { return getControlTextColor(); }
  84.  
  85.     public ColorUIResource getWindowBackground() { return getWhite(); }
  86.     public ColorUIResource getWindowTitleBackground() { return getPrimary3(); }
  87.     public ColorUIResource getWindowTitleForeground() { return getBlack(); }  
  88.     public ColorUIResource getWindowTitleInactiveBackground() { return getSecondary3(); }
  89.     public ColorUIResource getWindowTitleInactiveForeground() { return getBlack(); }
  90.  
  91.     public ColorUIResource getMenuBackground() { return getSecondary3(); }
  92.     public ColorUIResource getMenuForeground() { return  getBlack(); }
  93.     public ColorUIResource getMenuSelectedBackground() { return getPrimary2(); }
  94.     public ColorUIResource getMenuSelectedForeground() { return getBlack(); }
  95.     public ColorUIResource getMenuDisabledForeground() { return getSecondary2(); }
  96.     public ColorUIResource getSeparatorBackground() { return getWhite(); }
  97.     public ColorUIResource getSeparatorForeground() { return getPrimary1(); }
  98.     public ColorUIResource getAcceleratorForeground() { return getPrimary1(); }
  99.     public ColorUIResource getAcceleratorSelectedForeground() { return getBlack(); }
  100.  
  101.     public void addCustomEntriesToTable(UIDefaults table) {}
  102. }
  103.